From 9282794cf54021cca84875d63db02dd355c8f321 Mon Sep 17 00:00:00 2001 From: "kfraser@localhost.localdomain" Date: Mon, 4 Jun 2007 14:25:03 +0100 Subject: [PATCH] gdbstub: Bit-field boolean must be unsigned. Signed-off-by: Keir Fraser --- xen/include/xen/gdbstub.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/include/xen/gdbstub.h b/xen/include/xen/gdbstub.h index cf6e7e547c..46e4815e44 100644 --- a/xen/include/xen/gdbstub.h +++ b/xen/include/xen/gdbstub.h @@ -35,7 +35,7 @@ unsigned long str2ulong(const char *str, unsigned long bytes); struct gdb_context { int serhnd; /* handle on our serial line */ int console_steal_id; /* handle on stolen console */ - int currently_attached:1; + bool_t currently_attached; atomic_t running; unsigned long connected; u8 signum; -- 2.30.2